-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: added blog url and campaign / social short link tracking #145
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not flexible to maintain the list of campaigns inside the contract. Just parse out all the query arguments from the URL (?<query_args>
) and append them to the constructed redirect URL (&<query_args>
)
@frol could you review it one more time? |
@race-of-sloths include |
@Tguntenaar Thank you for your contribution! Your pull request is now a part of the Race of Sloths! Current status: waiting for scoringWe're waiting for maintainer to score this pull request with What is the Race of SlothsRace of Sloths is a friendly competition where you can participate in challenges and compete with other open-source contributors within your normal workflow For contributors:
For maintainers:
Feel free to check our website for additional details! Bot commands
|
@Tguntenaar Thank you for your contribution! Your pull request is now a part of the Race of Sloths! Current status: staleThis pull request was removed from the race, but you can include it again with What is the Race of SlothsRace of Sloths is a friendly competition where you can participate in challenges and compete with other open-source contributors within your normal workflow For contributors:
For maintainers:
Feel free to check our website for additional details! Bot commands
|
Resolves #879
This PR does two things:
We want links like this:
/blog/dev-dao/blog-title?c=1&s=i
to work. Mapping is defined in this spreadsheetNOTE: The
request.query
hashmap is always empty.. So I'm going to parse it from the pathrequest: Web4Request
EDIT: After review I removed any hardcoded mapping from the contract and we will do it manually in posthog instead.